home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_jade.idb / usr / freeware / include / sp / lib / NameToken.h.z / NameToken.h
Encoding:
C/C++ Source or Header  |  1999-07-21  |  378 b   |  25 lines

  1. // Copyright (c) 1994 James Clark
  2. // See the file COPYING for copying permission.
  3.  
  4. #ifndef NameToken_INCLUDED
  5. #define NameToken_INCLUDED 1
  6.  
  7. #include "Location.h"
  8. #include "StringC.h"
  9.  
  10. #ifdef SP_NAMESPACE
  11. namespace SP_NAMESPACE {
  12. #endif
  13.  
  14. struct NameToken {
  15.   StringC name;
  16.   StringC origName;
  17.   Location loc;
  18. };
  19.  
  20. #ifdef SP_NAMESPACE
  21. }
  22. #endif
  23.  
  24. #endif /* not NameToken_INCLUDED */
  25.